home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 5
/
Apprentice-Release5.iso
/
Source Code
/
Libraries
/
MacPNG Library 1.02
/
pngMacSrc 1.02
/
png.1
/
gif2png
/
version.c
< prev
Wrap
C/C++ Source or Header
|
1996-05-29
|
625b
|
32 lines
/*
* version.c
* Copyright (C) 1995 Alexander Lehmann
* For conditions of distribution and use, see copyright notice in gif2png.h
*/
#include "png.h"
#ifndef PNG_LIBPNG_VER_STRING
#ifndef PNGLIB
#define PNGLIB " 1.0 beta 1 - version 0.71 June 26, 1995"
#endif
#else
#ifndef PNGLIB
#define PNGLIB PNG_LIBPNG_VER_STRING
#endif
#endif
#ifndef ZLIB_VERSION
#ifndef ZLIB
#define ZLIB "version 0.93 June 25th, 1995."
#endif
#else
#ifndef ZLIB
#define ZLIB ZLIB_VERSION
#endif
#endif
const char version[]="gif2png 0.51 (beta) "
#ifdef TMPFILE
"(TMPFILE) "
#endif
"compiled " __DATE__ " with pnglib " PNGLIB " and zlib " ZLIB;